home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / kcl / akcl / akcl1615.lha / c / bcopy.c < prev    next >
C/C++ Source or Header  |  1989-10-08  |  82b  |  10 lines

  1. void
  2. bcopy(s1,s2,n)
  3. char *s1,*s2;
  4. int n;
  5. { while (n-- > 0)
  6.     *s2++ = *s1++;
  7. }
  8.  
  9.  
  10.